Skip to main content
Feedback

Salesforce acknowledgment XML

Upon successful completion, your process needs to send an acknowledgment back to Salesforce to close the loop for the outbound message.

You can simply copy and paste the following XML snipet into a Message step before the Return Documents step in your process.

<soapenv:Envelope xmlns:soapenv="http:.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<notificationsResponse xmlns="http://soap.sforce.com/2005/09/outbound">
<Ack>true</Ack>
</notificationsResponse>
</soapenv:Body>
</soapenv:Envelope>

For more information, refer to Message step and Return Documents step.